COMMENT ā VALID 00002 PAGES C REC PAGE DESCRIPTION C00001 00001 C00002 00002 In place reversal of a list - after Manna C00003 ENDMK Cā; ;;; In place reversal of a list - after Manna (defun prev (u) (prog (b tem) (setq b nil) loop (setq tem (cdr u)) (rplacd u b) (if (null tem) (return u)) (setq b u) (setq u tem) (go loop))) (setq x0 nil) (setq x1 '(a)) (setq x2 '(a b)) (setq x5 '(a b c d e))